body{
    background-color: #000000;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
}
.haikei:before{
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(../Pictures/Background/Background-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
}
.vertical{
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    scrollbar-width: none;
    width: 100%;
    height: 100vh;
}
header{
    padding-top: 1vh;
    margin-left: 0.4rem;
    margin-bottom: 5vh;
}
a{
    color: #fff;
    text-decoration-thickness: 1px;
    display: inline-block;
    transition: .3s;
    -webkit-transform: scale(1);
    transform: scale(1);
}
a:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.logo_pc{
    display: none;
}
.logo_sp{
    filter: drop-shadow(5px 5px 7px #000);
    display: block;
    width: 11rem;
    height: auto;
}
.subtitle{
    margin-bottom: 2.0rem; 
    text-align: center;
    width: 100%;
}
h1{
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.6rem,4vw,5rem);
    font-weight: normal;
    letter-spacing: 0.7vw;
    text-shadow: 5px 5px 7px #000000;
}
.menu{
    margin: auto;
    text-align: center;
    width: 80%;
}
p{
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(0.8rem,2.2vw,3rem);
    margin-bottom: 3.5rem;
    text-shadow: 5px 5px 7px #000000;
}
.under-ruby{
    display: inline-block;
    margin-top: -0.3rem;
    margin-bottom: -0.5rem;
}

.back{
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(0.8rem,2.2vw,3rem);
    letter-spacing: 0.5vw;
    text-align: center;
    min-height: 10vh;
    text-shadow: 5px 5px 7px #000000;
}
small{
    color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    text-shadow: 5px 5px 7px #000000;
    font-size: 1.5vw;
}
@keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
}  

/*PC用*/
@media screen and (min-width:1024px)  {
    body{
        background-color: #000000;
        overflow: hidden;
        width: 100%;
        height: 100vh;
    }
    .vertical{
        animation-name:fadeInAnime;
        animation-duration:2s;
        animation-fill-mode:forwards;
        opacity:0;
        display: flex;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
        min-height: 100vh;
    }
    header{
        padding: unset;
        margin-top: 7.5vh;
        margin-left: unset;
        margin-right: 5vw;
        margin-bottom: unset;
        width: unset;
    }
    a{
        text-decoration: none;
        display: inline-block;
        transition: .3s;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    a:hover{
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .logo_pc{
        filter: drop-shadow(5px 5px 7px #000);
        display: block;
        width: 6rem;
        height: auto;
    }
    .logo_sp{
        display: none;
    }
    .subtitle{
        text-align: left;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin-right: 4.5vw;
        margin-top: 15vh;
        min-height: 70vh;
        width: initial;
    }
    h1{
        font-size: 2.5rem;
        letter-spacing: 0.7vw;
    }
    .menu{
        text-align: left;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin: initial;
        margin-top: 11vh;
        margin-right: 4vw;
        min-height: 80vh;
        width: initial;
    }
    p{
        font-size: 1.0rem;
        letter-spacing: 0.1vw;
        margin-left: 3vw;
        margin-bottom: 0;
    }
    .under-ruby{
        display: inline-block;
        margin-top: -0.3rem;
        margin-bottom: -0.5rem;
    }
    .back{
        font-size: 1.0rem;
        letter-spacing: 0.5vw;
        margin-bottom: 4.5rem;
        margin-right: auto;
        margin-left: 6vw;
        text-align: right;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        min-height: 80vh;
    }
    small{
        position: absolute;
        left: 0;
        bottom: 0;
        font-size: 0.8rem;
    }
    @keyframes fadeInAnime{
        from {
          opacity: 0;
        }
      
        to {
          opacity: 1;
        }
    }  
}
